home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo KUNG FU LOUIE VS. THE MARTIAL ART POSSE
- echo ---------------------------------------
- echo 1989 R. Salgado
- echo.
- echo HARD DISK INSTALLATION PROGRAM.
- echo version 1.00, 07/30/89
- echo created by Raphael Salgado
- echo.
- if #%1 == # goto noparam
- goto install
- :noparam
- echo Sorry! To run this program, use the parameter format below:
- echo.
- echo HINSTALL d:\path where `d:' is the hard drive letter (C-F only)
- echo and `\path' is the directory path to create
- echo and place the program files in.
- echo.
- goto endbatch
- :install
- echo You are about to install this program in the drive and subdirectory
- echo labeled %1.
- echo.
- echo The installation will also create a subdirectory called CHARS
- echo within the path of %1\KUNGFU.
- echo.
- echo Make sure you have at least 1.2 million bytes free on your drive to
- echo install. Abort now, if so, or it may cause errors during install.
- echo.
- echo If you wish to abort this procedure, press [CNTRL-C] to abort the
- echo installation; otherwise, strike any key when ready to continue....
- pause > nul
- echo.
- echo 1. Making subdirectories %1\KUNGFU and CHARS...
- md %1\kungfu
- md %1\kungfu\chars
- echo.
- echo 2. Copying contents of INTRO DISK...
- copy *.* %1\kungfu\*.* > nul
- :disk1
- echo.
- echo ------ Please remove: INTRO DISK
- echo ------ and replace with: GAME DISK ONE
- echo.
- pause
- if not exist level5.snd goto disk1
- echo.
- echo 3. Copying contents of GAME DISK ONE...
- copy *.* %1\kungfu\*.* > nul
- copy chars\*.* %1\kungfu\chars\*.* > nul
- :disk2
- echo.
- echo ------ Please remove: GAME DISK ONE
- echo ------ and replace with: GAME DISK TWO
- echo.
- pause
- if not exist level1.snd goto disk2
- echo.
- echo 4. Copying contents of GAME DISK TWO...
- copy *.* %1\kungfu\*.* > nul
- copy chars\*.* %1\kungfu\chars\*.* > nul
- echo.
- echo.
- echo HARD DISK INSTALLATION PROCEDURE COMPLETED. If you noticed any errors
- echo during the installation, please remedy immediately and reinstall.
- echo.
- :endbatch